for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
Amarkal.settings.header = {
Amarkal
/** global: Amarkal */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
setSectionTitle: function(title) {
$('#amarkal-settings-sec-title').text(title);
},
setSectionSubtitle: function(subtitle) {
$('#amarkal-settings-sec-subtitle').text(subtitle);
}
};
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.